home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / Item Class / Item sources / Item.c < prev   
Encoding:
C/C++ Source or Header  |  1994-11-30  |  235 b   |  17 lines  |  [TEXT/KAHL]

  1. /*
  2.  * File:        Item.c
  3.  * Created:        8/10/93
  4.  *
  5.  * Copyright © 1993 Animas Software Production. All rights reserved.
  6.  */
  7.  
  8. #include "CItemApp.h"
  9.  
  10. main()
  11. {
  12.     CItemApp    *demoApp;
  13.         
  14.     demoApp = new CItemApp;
  15.     demoApp->Run();
  16.     demoApp->Exit();    
  17. }